home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 8
/
Revista CD Expert nº 08 CD1.iso
/
Utilitarios
/
Programacao
/
Pacific C for DOS
/
EXAMPLES
/
ARGS.C
next >
Wrap
C/C++ Source or Header
|
1995-03-08
|
481b
|
21 lines
#include <stdio.h>
/*
* This program demonsrates use of "argc" and
* "argv" to iterate through the command line
* argument list.
*
* To explore the effect of the PACC "-R" option
* and the PPD "_getargs() wildcard expansion"
* option first compile this program without "-R"
* or "wildcard expansion" and run ARGS *.C
* then compile it with wildcard expansion
* and run it again.
*/
main(int argc, char ** argv)
{
while (--argc)
puts(*++argv);
}